home *** CD-ROM | disk | FTP | other *** search
/ Delphi Programmer's Power Pack / Delphi Volume 1.iso / s_to_z / vpe_130 / delphi / minidemo / minidemo.dpr next >
Text File  |  1996-09-15  |  204b  |  14 lines

  1. program Minidemo;
  2.  
  3. uses
  4.   Forms,
  5.   Unit1 in 'UNIT1.PAS' {Form1},
  6.   VPENGINE in '\VPE\DELPHI\VPENGINE.PAS';
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.CreateForm(TForm1, Form1);
  12.   Application.Run;
  13. end.
  14.